home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
dde1
/
execute.frm
< prev
next >
Wrap
Text File
|
1993-05-26
|
2KB
|
67 lines
VERSION 2.00
Begin Form frmExecute
Caption = "Command to Execute"
Height = 1755
Left = 1155
LinkMode = 1 'Source
LinkTopic = "Form1"
ScaleHeight = 1350
ScaleWidth = 6180
Top = 3570
Width = 6300
Begin CommandButton cmdCancel
Cancel = -1 'True
Caption = "Cancel"
Height = 495
Left = 4920
TabIndex = 2
Top = 720
Width = 1095
End
Begin ComboBox cboExecuteString
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00000000&
Height = 300
Left = 120
TabIndex = 1
Top = 240
Width = 4695
End
Begin CommandButton cmdOK
Caption = "OK"
Default = -1 'True
Enabled = 0 'False
Height = 495
Left = 4920
TabIndex = 0
Top = 120
Width = 1095
End
End
Option Explicit
Sub cboExecuteString_Change ()
cmdOK.Enabled = (Len(cboExecuteString.Text) > 0)
End Sub
Sub cboExecuteString_Click ()
cmdOK.Enabled = (Len(cboExecuteString.Text) > 0)
End Sub
Sub cmdCancel_Click ()
Unload frmExecute
End Sub
Sub cmdOK_Click ()
On Error Resume Next
frmMain.txtData.LinkExecute cboExecuteString.Text
frmMain.picData.LinkExecute cboExecuteString.Text
End Sub